VintaSoft Imaging .NET SDK 15.1: Documentation for .NET developer
Vintasoft.Imaging.Drawing Namespace / DrawingString Class / Split Methods / Split(Char[],StringSplitOptions) Method
Syntax Requirements SeeAlso
In This Topic
Split(Char[],StringSplitOptions) Method (DrawingString)
In This Topic
Splits a string into substrings based on the characters in an array.
Syntax
'Declaration

Public Overloads Function Split( _
ByVal separator
A character array that delimits the substrings in this string.
() As Char, _
ByVal options
System.StringSplitOptions.RemoveEmptyEntries to omit empty array elements from the array returned; or System.StringSplitOptions.None to include empty array elements in the array returned.
As System.StringSplitOptions _
) As DrawingString[]
public DrawingString[] Split(
char[] separator,
System.StringSplitOptions options
)

Parameters

separator
A character array that delimits the substrings in this string.
options
System.StringSplitOptions.RemoveEmptyEntries to omit empty array elements from the array returned; or System.StringSplitOptions.None to include empty array elements in the array returned.

Return Value

An array whose elements contain the substrings in this string that are delimited by one or more characters in separator.
Requirements

Target Platforms: .NET 10; .NET 9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

See Also